Padding
Adds empty space around the component
modifier Padding
import { Padding, Text, Background, Rectangle } from ui
export var main = Text("Hello, world!") with {
Padding(8)
Background {
Rectangle(color: Color(0xFF123456))
}
}
Constructors
(_ padding)
Adds the same amount of space on all sides.
_ padding: Float
The padding size in pixels.
(horizontal:vertical)
Adds horizontal and vertical padding.
horizontal: Float = 0
The padding size for the left and right side.
vertical: Float = 0
The padding size for the top and bottom side.